home *** CD-ROM | disk | FTP | other *** search
- /*
- (C) 1995 AROS - The Amiga Replacement OS
- $Id: callhookpkt.c,v 1.1 1996/08/28 17:51:47 digulla Exp $ $Log
- Desc:
- Lang: english
- */
- #include "utility_intern.h"
-
- /*****************************************************************************
-
- NAME */
- #include <utility/hooks.h>
- #include <clib/utility_protos.h>
-
- __AROS_LH3(ULONG, CallHookPkt,
-
- /* SYNOPSIS */
- __AROS_LHA(struct Hook *, hook, A0),
- __AROS_LHA(APTR , object, A2),
- __AROS_LHA(APTR , paramPacket, A1),
-
- /* LOCATION */
- struct Library *, UtilityBase, 17, Utility)
-
- /* FUNCTION
-
- INPUTS
-
- RESULT
-
- NOTES
-
- EXAMPLE
-
- BUGS
-
- SEE ALSO
-
- INTERNALS
-
- HISTORY
- 29-10-95 digulla automatically created from
- utility_lib.fd and clib/utility_protos.h
-
- *****************************************************************************/
- {
- __AROS_FUNC_INIT
- __AROS_BASE_EXT_DECL(struct Library *,UtilityBase)
-
- return ((*(hook->h_Entry)) (hook, object, paramPacket));
-
- __AROS_FUNC_EXIT
- } /* CallHookPkt */
-